Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update non-major dependencies of lib #543

Merged
merged 1 commit into from
Jul 30, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 28, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@headlessui/react 1.7.15 -> 1.7.16 age adoption passing confidence
@storybook/addon-essentials (source) 7.0.27 -> 7.1.1 age adoption passing confidence
@storybook/addon-interactions (source) 7.0.27 -> 7.1.1 age adoption passing confidence
@storybook/addon-links (source) 7.0.27 -> 7.1.1 age adoption passing confidence
@storybook/blocks (source) 7.0.27 -> 7.1.1 age adoption passing confidence
@storybook/nextjs (source) 7.0.27 -> 7.1.1 age adoption passing confidence
@storybook/react (source) 7.0.27 -> 7.1.1 age adoption passing confidence
@types/react (source) 18.2.15 -> 18.2.17 age adoption passing confidence
lucide-react (source) 0.260.0 -> 0.263.1 age adoption passing confidence
next (source) 13.4.10 -> 13.4.12 age adoption passing confidence
storybook (source) 7.0.27 -> 7.1.1 age adoption passing confidence
webpack 5.88.1 -> 5.88.2 age adoption passing confidence

Release Notes

tailwindlabs/headlessui (@​headlessui/react)

v1.7.16

Compare Source

Fixed
  • Ensure the caret is in a consistent position when syncing the Combobox.Input value (#​2568)
  • Improve "outside click" behaviour in combination with 3rd party libraries (#​2572)
  • Ensure IME works on Android devices (#​2580)
  • Calculate aria-expanded purely based on the open/closed state (#​2610)
  • Submit form on Enter even if no submit-like button was found (#​2613)
storybookjs/storybook (@​storybook/addon-essentials)

v7.1.1

Compare Source

v7.1.0

Compare Source

Storybook 7.1 is here! 🎉

7.1 contains hundreds more fixes, features, and tweaks. Browse the changelogs matching 7.1.0-alpha.*, 7.1.0-beta.*, and 7.1.0-rc.* for the full list of changes.

For a better upgrade experience, please use one of the following commands:

npm or yarn 1:
npx storybook@latest upgrade

pnpm:
pnpm dlx storybook@latest upgrade

yarn berry:
yarn dlx storybook@latest upgrade

lucide-icons/lucide (lucide-react)

v0.263.1: Lucide React Hotfix

Compare Source

What's Changed

v0.263.0: New icons v0.263.0

Compare Source

Modified Icons

v0.262.0: Lucide React Fixes and New icons v0.262.0

Compare Source

Lucide React Updates (dynamicIconImports)

Due to startup problems with build engines like ESBuild (e.g. Remix and Vite). We move to a different way of importing the dynamicIconImports. It's now in a separate entry module so compilers won't compile all dynamic imports when loading lucide-react. See #​1437

Updated example from v0.260.0

import dynamic from 'next/dynamic'
- import { dynamicIconImports, LucideProps } from 'lucide-react';
+ import { LucideProps } from 'lucide-react';
+ import dynamicIconImports from 'lucide-react/dynamicIconImports';

interface IconProps extends LucideProps {
  name: keyof typeof dynamicIconImports;
}

const Icon = ({ name, color, size }: IconProps) => {
  const LucideIcon = dynamic(dynamicIconImports[name])

  return <LucideIcon color={color} size={size} />;
};

export default Icon;

New icons 🎨

Modified Icons 🔨

v0.261.0: New icons v0.261.0

Compare Source

New icons 🎨

Modified Icons 🔨

vercel/next.js (next)

v13.4.12

Compare Source

Core Changes
  • Separate routing code from render servers: #​52492
  • Move Pages API rendering into bundle: #​52149
  • update Turbopack: #​52986
  • Turbopack: Refactoring module references: #​52930
  • Increase timeout for 404 tests: #​52998
  • Reland "Refine the not-found rendering process for app router": #​52985
  • Revert "Separate routing code from render servers (#​52492)": #​53016
Documentation Changes
  • "Clarify the 'Existing Projects' section of the TypeScript docs:: #​52944
  • Update 02-dynamic-routes.mdx: #​52975
  • chore(docs): fix broken link: #​53021
Misc Changes
  • Update to latest version of turborepo: #​52979
  • Update swc_core to v0.79.22: #​52945
  • chore(ci): add pnpm workspace for github actions: #​52976
  • Changed package manager for install-native.mjs to pnpm: #​52971
  • update CODEOWNERS config: #​53017
Credits

Huge thanks to @​ijjk, @​wyattjoh, @​sokra, @​kdy1, @​alexkirsz, @​styfle, @​ShaunFerris, @​syedtaqi95, @​Heidar-An, @​huozhi, and @​ztanner for helping!

v13.4.11

Compare Source

Core Changes
  • fix: add missing <preload> for next/image in App Router: #​52425
  • Support metadata exports for server components not-found: #​52678
  • feat(next-swc): try to fallback native bindings with MODULE_NOT_FOUND: #​52667
  • Turbopack: Vc and Turbo Engine type system improvements : #​51792
  • Fix runtime edge not-found handling: #​52754
  • fix: forward NavigateOptions in adaptForAppRouterInstance: #​52498
  • fix(output): do not slice pathname unless ends with .txt: #​52640
  • Fix tagsManifest initialization check: #​52776
  • Turbopack: Experimental dev app pages support: #​52680
  • Turbopack: move Asset::ident to more specific traits: #​52683
  • Fix tracking of ContextModule: #​52795
  • Set process.title for router and render workers: #​52779
  • fix Remove unnecessary await: #​52800
  • Revert "perf: improve URL validation performance": #​52818
  • Refactor the client entry plugin: #​52798
  • Turbopack: Add manifest generation to pages: #​52793
  • Turbopack: move references() to specific traits: #​52822
  • Update default moduleResolution in tsconfig.json from node to bundler: #​51957
  • Turbopack: Next.rs API improvements: #​52856
  • update turbopack: #​52899
  • Update vendor @​vercel/og: #​52897
  • Fixed:#​52853 Lacking 'color' attribute in IconDescriptor Metadata: #​52902
  • Support basePath with edge runtime for Custom App Routes: #​52910
  • improve error DX on pages with RSC build errors: #​52843
  • fix: allow smooth scrolling if only hash changes (pages & app): #​52915
  • add edge support for next.rs API: #​52885
  • Allow general language codes in the Metadata API: #​52920
  • Fix client reference manifest for interception routes: #​52961
  • Refine the not-found rendering process for app router: #​52790
  • app-router: prefetching tweaks: #​52949
  • Revert "Refine the not-found rendering process for app router": #​52977
Documentation Changes
  • Update mention of route handlers for forms: #​52781
  • (Docs) add missing js version for generateMetadata.: #​52763
  • docs : fix typo in React cache example: #​52787
  • chore(docs): Add mentioning of HOSTNAME env variable for standalone output: #​52804
  • Fix typo in docs: #​52815
  • Update 02-edge-and-nodejs-runtimes.mdx: #​52888
  • chore(docs): add Typescript statically typed links mention in link doc: #​52847
  • chore(docs): fix typo in generate metadata docs: #​52904
  • fix example component in MDX documentation: #​52753
  • wrong content for next.config.mjs for MDX Plugins: #​52738
  • Update 06-lazy-loading.mdx: Incorrect filename in Example on "Importing Named Imports": #​52932
  • Change "publically" to "publicly" in the routing docs: #​52966
Example Changes
  • examples: export force-dynamic from all dynamic routes: #​52916
Misc Changes
  • chore: add "please simplify reproduction" comment: #​52631
  • update job concurrency: #​52788
  • Lock node version to 18.16: #​52894
  • Update runs-on tags
  • chore: add GitHub Action to manage "+1" comments: #​52866
Credits

Huge thanks to @​styfle, @​huozhi, @​balazsorban44, @​kwonoj, @​alexkirsz, @​ijjk, @​Jeffrey-Zutt, @​timneutkens, @​vinaykulk621, @​Ryan-Dia, @​sokra, @​shuding, @​steppefox, @​hiro0218, @​rjsdnql123, @​feedthejim, @​fgiuliani, @​steven-tey, @​AntoineBourin, @​adamrhunter, @​darshanjain-entrepreneur, @​s0h311, @​wyattjoh, @​ztanner, @​djreillo, @​dijonmusters, and @​cassidoo for helping!

webpack/webpack (webpack)

v5.88.2

Compare Source

Bug Fixes

Full Changelog: webpack/webpack@v5.88.1...v5.88.2


Configuration

📅 Schedule: Branch creation - "* 18-21 * * 5" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@cloudflare-workers-and-pages
Copy link

cloudflare-workers-and-pages bot commented Jul 28, 2023

Deploying with  Cloudflare Pages  Cloudflare Pages

Latest commit: 8163e4f
Status: ✅  Deploy successful!
Preview URL: https://cd6eeb7b.web-d91.pages.dev
Branch Preview URL: https://renovate-non-major-dependenc-qyh3.web-d91.pages.dev

View logs

@renovate renovate bot requested a review from a team as a code owner July 28, 2023 18:29
@renovate renovate bot requested review from florian-sabonchi and DasProffi and removed request for a team July 28, 2023 18:29
@renovate renovate bot requested a review from MaxSchaefer July 28, 2023 18:29
@renovate renovate bot force-pushed the renovate/non-major-dependencies-of-lib branch 3 times, most recently from 297ca22 to 106fc37 Compare July 30, 2023 20:06
@renovate renovate bot force-pushed the renovate/non-major-dependencies-of-lib branch from 106fc37 to 8163e4f Compare July 30, 2023 20:10
@MaxSchaefer MaxSchaefer merged commit 4c67865 into main Jul 30, 2023
7 checks passed
@MaxSchaefer MaxSchaefer deleted the renovate/non-major-dependencies-of-lib branch July 30, 2023 21:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant